b4c7e0c18735fba4c5ece2ccccb8c5858de55a2c,cu-cli/src/main/java/fr/treeptik/cloudunit/cli/commands/ModuleCommands.java,ModuleCommands,runScript,#String#File#,80

Before Change


    public String runScript(
            @CliOption(key = "name", mandatory = true, help = HELP_MODULE_NAME) String moduleName,
            @CliOption(key = "path", mandatory = true, help = "Script path") File file) {
        return moduleUtils.runScript(moduleName, file);
    }

}

After Change


    public String runScript(
            @CliOption(key = "name", mandatory = true, help = HELP_MODULE_NAME) String moduleName,
            @CliOption(key = "path", mandatory = true, help = "Script path") File file) {
        moduleUtils.runScript(moduleName, file);
        
        return formatter.unlessQuiet("Script run");
    }